home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Dev / Oberon / source / amiga / Input.mod < prev    next >
Text File  |  1995-06-29  |  1KB  |  58 lines

  1. (**************************************************************************
  2.  
  3.      $RCSfile: Input.mod $
  4.   Description: Interface to input.device
  5.  
  6.    Created by: fjc (Frank Copeland)
  7.     $Revision: 3.8 $
  8.       $Author: fjc $
  9.         $Date: 1995/06/04 23:13:14 $
  10.  
  11.   Includes Release 40.15
  12.  
  13.   (C) Copyright 1985-1993 Commodore-Amiga, Inc.
  14.       All Rights Reserved
  15.  
  16.   Oberon-A interface Copyright © 1994-1995, Frank Copeland.
  17.   This file is part of the Oberon-A Interface.
  18.   See Oberon-A.doc for conditions of use and distribution.
  19.  
  20. ***************************************************************************)
  21.  
  22. <* STANDARD- *>
  23.  
  24. MODULE [2] Input;
  25.  
  26. IMPORT e := Exec, s := Sets;
  27.  
  28.  
  29. (*
  30. **      $VER: input.h 36.0 (1.5.90)
  31. **
  32. **      input device command definitions
  33. *)
  34.  
  35. CONST
  36.  
  37.   addHandler    * = e.nonstd+0;
  38.   remHandler    * = e.nonstd+1;
  39.   writeEvent    * = e.nonstd+2;
  40.   setThresh     * = e.nonstd+3;
  41.   setPeriod     * = e.nonstd+4;
  42.   setMPort      * = e.nonstd+5;
  43.   setMType      * = e.nonstd+6;
  44.   setMTrig      * = e.nonstd+7;
  45.  
  46.  
  47. VAR
  48.  
  49.   base * : e.DevicePtr;
  50.  
  51. (*
  52. **      $VER: input_protos.h 36.2 (7.11.90)
  53. *)
  54.  
  55. PROCEDURE PeekQualifier* [base,-42] () : s.SET16;
  56.  
  57. END Input.
  58.